home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / common.cst / 00039_autoEffectsOnce.ls < prev    next >
Encoding:
Text File  |  2001-09-04  |  542 b   |  33 lines

  1. property meSprite, xDone, autoTix
  2.  
  3. on beginSprite me
  4.   autoTix = the timer + random(1000)
  5.   meSprite = sprite(me.spriteNum)
  6.   meSprite.static = 1
  7.   xDone = 0
  8. end
  9.  
  10. on autoTrig me
  11.   if xDone = 0 then
  12.     xDone = 1
  13.     if meSprite.playing = 0 then
  14.       meSprite.static = 0
  15.       meSprite.play()
  16.     end if
  17.   end if
  18. end
  19.  
  20. on exitFrame me
  21.   if xDone = 0 then
  22.     if the timer > autoTix and the timer < autoTix + 10 then
  23.       autoTrig me
  24.     end if
  25.   end if
  26. end
  27.  
  28. on setStatic me
  29.   if meSprite.playing = 0 then
  30.     meSprite.static = 1
  31.   end if
  32. end
  33.